home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / amos / amoslist.lzh / AMOSLIST / 000127_amos-request@svcs1.digex.net_Thu Sep 7 18:36:43 1995.msg < prev    next >
Internet Message Format  |  1995-10-02  |  2KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id SAA03982;  for <mcox@access.digex.net> ; Thu, 7 Sep 1995 18:36:42 -0400
  2. Received: (from daemon@localhost) by svcs1.digex.net (8.6.12/8.6.12) id QAA26586 for amos-out; Thu, 7 Sep 1995 16:40:07 -0400
  3. Received: from mail1.access.digex.net (mail1.access.digex.net [205.197.247.2]) by svcs1.digex.net (8.6.12/8.6.12) with ESMTP id QAA26583 for <amos-list@svcs1.digex.net>; Thu, 7 Sep 1995 16:40:06 -0400
  4. Received: from ds1.acs.ucalgary.ca (root@ds1.acs.ucalgary.ca [136.159.34.101]) by mail1.access.digex.net (8.6.12/8.6.12) with SMTP id QAA17960;  for <amos-list@access.digex.net> ; Thu, 7 Sep 1995 16:40:02 -0400
  5. Received: by acs3.acs.ucalgary.ca (AIX 4.1/UCB 5.64/4.03)
  6.           id AA120016; Thu, 7 Sep 1995 14:41:38 -0600
  7. Message-Id: <9509072041.AA120016@acs3.acs.ucalgary.ca>
  8. Subject: Re: sound in amos
  9. To: fer007@freenet.scri.fsu.edu (fernando Bartra)
  10. Date: Thu, 7 Sep 95 14:41:37 MDT
  11. From: "Robert Andrew Currie" <racurrie@acs.ucalgary.ca>
  12. Cc: amos-list@access.digex.net
  13. In-Reply-To: <Pine.3.89.9509071032.B13445-0100000@freenet3.scri.fsu.edu>; from "fernando Bartra" at Sep 7, 95 10:25 am
  14. X-Mailer: ELM [version 2.3 PL11B]
  15. Mime-Version: 1.0
  16. Content-Type: text/plain; charset=US-ASCII
  17. Content-Transfer-Encoding: 7bit
  18. Content-Length: 725       
  19. Status: RO
  20. X-Status: 
  21.  
  22. >    Thanx for your program to load sounds, Robert Curry, unfortunately I 
  23. > have the creator 1.3 and command Sload is not supported, so the program 
  24. > won't work,
  25. >    Fernando Bartra
  26. >
  27.     You can replace Sload with the command
  28.  
  29. SOUND$=Input$(Port#,5000)   'places 5000 characters of
  30.                 'the sound file into string
  31.                 'SOUND$
  32.  
  33. Copy Varptr(SOUND$),Varptr(SOUND$)+5000 To Start(CUR_BANK)
  34.                 'Copies the data from the string 
  35.                 'into the sound bank
  36.  
  37.     I'm not sure of the speed of this though because Input$
  38. along with Copy might be slower than a simple Sload. These two
  39. commands can be made into one line if you have the Easylife
  40. extension. 
  41.  
  42. Mem Input$(Port#,5000),Start(CUR_BANK)
  43.  
  44.             Robert Currie
  45.  
  46.